home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Intuition / Gadgets / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-20  |  262 b   |  16 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: simplegad strhooks updatestrgad
  4.  
  5. simplegad: simplegad.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. strhooks: strhooks.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. updatestrgad: updatestrgad.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. clean:
  15.     -delete \#?.(o|lnk)
  16.